home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CBASE102.ARJ / ROLODECK.DDL < prev    next >
Text File  |  1991-09-23  |  833b  |  25 lines

  1. /*    Copyright (c) 1989 Citadel    */
  2. /*       All Rights Reserved        */
  3.  
  4. /* #ident    "@(#)rolodeck.ddl    1.5 - 91/09/23" */
  5.  
  6. /* file assignments */
  7. data file    "rolodeck.dat"    contains rolodeck;
  8. index file    "rdcont.ndx"    contains rd_contact;
  9. index file    "rdcomp.ndx"    contains rd_company;
  10.  
  11. /* record definitions */
  12. record rolodeck {                /* rolodeck record */
  13.     unique key t_string    rd_contact[40];    /* contact name */
  14.     t_string        rd_title[40];    /* contact title */
  15.     key t_string        rd_company[40];    /* company name */
  16.     t_string        rd_addr[80];    /* address */
  17.     t_string        rd_city[25];    /* city */
  18.     t_string        rd_state[2];    /* state */
  19.     t_string        rd_zip[10];    /* zip code */
  20.     t_string        rd_phone[12];    /* phone number */
  21.     t_string        rd_ext[4];    /* phone extension */
  22.     t_string        rd_fax[12];    /* fax number */
  23.     t_string        rd_notes[160];    /* notes */
  24. };
  25.